> GENERATE CODES FOR THE GAME "BATTLE BULL" TO GAME BOY by JustBurn:

In this document i will teach how to make a password for the game BATTLE BULL.
That's right!! MAKE A PASSWORD :)
With this, you can edit everything in the game...Items that you have and what stage to start, cool hum? ;P
Even the game is too old and forgotten, making passwords and try them can be fun for at least 1 minute.
Hum? How to make them? I will teach you now...

> FIRST STEP, learn the code table:

Each character have a number value to be combined into the code:
"B" =  0    "C" =  1    "D" =  2    "F" =  3
"G" =  4    "H" =  5    "J" =  6    "K" =  7
"L" =  8    "M" =  9    "N" = 10    "P" = 11
"Q" = 12    "R" = 13    "S" = 14    "T" = 15
"V" = 16    "W" = 17    "X" = 18    "Z" = 19
"0" = 20    "1" = 21    "2" = 22    "3" = 23
"4" = 24    "5" = 25    "6" = 26    "7" = 27
"8" = 28    "9" = 29    "$" = 30    "*" = 31
 For example, the [C + C] is [D] and [D + D] is [G], got it!? :)
                   1 + 1   =  2       2 + 2   =  4

Let's say, you see password "LGBC"...it's just 8 (L), 4 (G), 0 (B), 1 (C)
Is not hard as it look.
After that is just a combination & add of numbers to make the PASSWORD.

> LAST STEP, Combinate Items & Stages to make the PASSWORD:

First let's start with numbers, starting with 0 0 0 0:

Inicial value = "BBBB" = 0 0 0 0 (This is necessary to start
 the calculation)

After that, is just some adds on it's own columns:

- Objects
 +engine 1 (Turbo)                           -  +8  +0  +0  +1
 +engine 2 (Twin Turbo)                      - +16  +0  +0  +2
 +engine 3 (Turbo Jet)                       -  +0  +0  +0  +4
 +shovel 1 (Simple S-1)                      -  +0  +0  +0  +8
 +shovel 2 (Sharp S-2)                       -  +0  +0  +0 +16
 +shovel 3 (Strong S-3)                      -  +8  +0  +1  +0
 +weapon 1 (Vulcan)                          - +16  +0  +2  +0
 +weapon 2 (Grenade)                         -  +0  +0  +4  +0
 +weapon 3 (Missile)                         -  +0  +0  +8  +0
 +jump 1 (Short Jump)                        -  +0  +0 +16  +0
 +jump 2 (High Jump)                         -  +8  +1  +0  +0
 +jump 3 (Super Jump)                        - +16  +2  +0  +0
- Stages (Selection of stages, can be combined wih objects and is
  necessary to start the game, stage 0 is ilegal and don't work)
 +1 stage (Can only be used once)            -  +0  +4  +0  +0
 +2 stage (Can only be used once)            -  +0  +8  +0  +0
 +4 stage (Can only be used once)            -  +0 +16  +0  +0
 +8 stage (Can only be used once)            -  +9  +0  +0  +0
 +16 stage (Can only be used once)           - +18  +0  +0  +0
 +32 stage (Can only be used once)           -  +4  +0  +0  +0
- Last stage (Can be combined with objects but not with others
 stages)
 48 stage (Can only be used once and alone) - +22  +0  +0  +0

NOTE: If the case of the combination is a number bigger that 31
 you must subtract by 32 until the number be less or equal to 31:
  16 is 16 -> 16!!
  32 is 0  -> 32 - 32 = 0!!
  48 is 16 -> 48 - 32 = 16!!
  68 is 4  -> 68 - 32 = 36 - 32 = 4!!

Now that you half got it, let me explain better...
The PASSWORD have 4 letters, so, the code have 4 numbers.
One in each column, after getting the result...let's say 0, 4, 0, 0
 you just place the code:
 "B G B B" (See the list of characters and it's values)
  0 4 0 0
Being the password "BGBB" just a start of stage 1 without any objects.

> EXAMPLES:

Remember that is necessary to select the stage because the stage 0
 is ilegal!!

 Stage 1 without objects: Password "BGBB"
  Start value   =   0   0   0   0 - BBBB
  +1 stage      =  +0  +4  +0  +0 - BGBB
  --------------------------------------
  Password      =   0   4   0   0 - BGBB

 Stage 1 with engine 1 (Turbo): Password "LGBC"
  Start value   =   0   0   0   0 - BBBB
  +engine 1     =  +8  +0  +0  +1 - LBBC
  +1 stage      =  +0  +4  +0  +0 - BGBB
  --------------------------------------
  Password      =   8   4   0   1 - LGBC

 Stage 7 with engine 2 (Turbo) and jump 1 (Short jump)
 and shovel 1 (Simple S-1): Password "V8VN"
  Valor inicial =   0   0   0   0 - BBBB
  +engine 2     = +16  +0  +0  +2 - VBBD
  +jump 1       =  +0  +0 +16  +0 - BBVB
  +shovel 1     =  +0  +0  +0  +8 - BBBL
  +1 stage      =  +0  +4  +0  +0 - BGBB
  +2 stage      =  +0  +8  +0  +0 - BLBB
  +4 stage      =  +0 +16  +0  +0 - BVBB
  --------------------------------------
  Password      =  16  28  16  10 - V8VN

 Estgio 2 com a arma 1 (Vulcan): Password "VLDB"
  Valor inicial =   0   0   0   0 - BBBB
  +weapon 1     = +16  +0  +2  +0 - VBDB
  +2 stage      =  +0  +8  +0  +0 - BLBB
  --------------------------------------
  Password      =  16   8   2   0 - VLDB
  
 Last stage with all objects: Password "$F**"
  Start value   =   0   0   0   0 - BBBB
  +engine 1     =  +8  +0  +0  +1 - LBBC
  +engine 2     = +16  +0  +0  +2 - VBBD
  +engine 3     =  +0  +0  +0  +4 - BBBG
  +shovel 1     =  +0  +0  +0  +8 - BBBL
  +shovel 2     =  +0  +0  +0 +16 - BBBV
  +shovel 3     =  +8  +0  +1  +0 - LBCB
  +weapon 1     = +16  +0  +2  +0 - VBDB
  +weapon 2     =  +0  +0  +4  +0 - BBGB
  +weapon 3     =  +0  +0  +8  +0 - BBLB
  +jump 1       =  +0  +0 +16  +0 - BBVB
  +jump 2       =  +8  +1  +0  +0 - LCBB
  +jump 3       = +16  +2  +0  +0 - VDBB
  Last stage    = +22  +0  +0  +0 - 2BBB
  --------------------------------------
  Password      =  30   3  31  31 - $F**

> NOTES

I hope you liked it...umm...maybe not :P
Anyway, i posted my secret cheat and i think it explain clearly how to make the PASSWORD.
If you have questions, just read again ;)
Bye and have fun with this classic for GB!!
